gtk-demo: Make the menu example work again
authorMatthias Clasen <mclasen@redhat.com>
Thu, 17 Feb 2011 21:40:00 +0000 (16:40 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 17 Feb 2011 21:40:00 +0000 (16:40 -0500)
demos/gtk-demo/menus.c

index 316e8530151b8899b81f97c178043ef37c76a1e6..7ea2984446d247bcf5fd4385fc8b6b15e634cdc2 100644 (file)
@@ -74,47 +74,17 @@ change_orientation (GtkWidget *button,
                     GtkWidget *menubar)
 {
   GtkWidget *parent;
-  GtkWidget *box = NULL;
+  GtkOrientation orientation;
 
   parent = gtk_widget_get_parent (menubar);
+  orientation = gtk_orientable_get_orientation (GTK_ORIENTABLE (parent));
+  gtk_orientable_set_orientation (GTK_ORIENTABLE (parent), 1 - orientation);
 
-  if (GTK_IS_VBOX (parent))
-    {
-      box = gtk_widget_get_parent (parent);
-
-      g_object_ref (menubar);
-      gtk_container_remove (GTK_CONTAINER (parent), menubar);
-      gtk_container_add (GTK_CONTAINER (box), menubar);
-      gtk_box_reorder_child (GTK_BOX (box), menubar, 0);
-      g_object_unref (menubar);
-      g_object_set (menubar, 
-                   "pack-direction", GTK_PACK_DIRECTION_TTB,
-                   NULL);
-    }
+  if (orientation == GTK_ORIENTATION_VERTICAL)
+    g_object_set (menubar, "pack-direction", GTK_PACK_DIRECTION_TTB, NULL);
   else
-    {
-      GList *children, *l;
-
-      children = gtk_container_get_children (GTK_CONTAINER (parent));
-      for (l = children; l; l = l->next)
-       {
-         if (GTK_IS_VBOX (l->data))
-           {
-             box = l->data;
-             break;
-           }
-       }
-      g_list_free (children);
-
-      g_object_ref (menubar);
-      gtk_container_remove (GTK_CONTAINER (parent), menubar);
-      gtk_container_add (GTK_CONTAINER (box), menubar);
-      gtk_box_reorder_child (GTK_BOX (box), menubar, 0);
-      g_object_unref (menubar);
-      g_object_set (menubar, 
-                   "pack-direction", GTK_PACK_DIRECTION_LTR,
-                   NULL);
-    }
+    g_object_set (menubar, "pack-direction", GTK_PACK_DIRECTION_LTR, NULL);
+
 }
 
 static GtkWidget *window = NULL;